home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / dvsv16.zip / RA.BAT < prev    next >
DOS Batch File  |  1993-12-27  |  703b  |  37 lines

  1. @echo off
  2. goto start
  3.  
  4. :baud1200
  5. RA -C1 -B1200 -E0
  6. goto start
  7.  
  8. :baud2400
  9. RA -C1 -B2400 -E0
  10. goto start
  11.  
  12. :localuser
  13. RA -L -E0
  14. goto start
  15.  
  16. :event1
  17. echo.
  18. echo Put Your Event Instruction Here.
  19. echo.
  20. goto start
  21.  
  22. :start
  23. echo.
  24. echo Put Your Instruction Here.
  25. echo.
  26. DVSWITCH
  27. if errorlevel = 4 goto event1
  28. if errorlevel = 3 goto localuser
  29. if errorlevel = 2 goto baud2400
  30. if errorlevel = 1 goto baud1200
  31.  
  32. REM     This batch file assumes that you are running a RA (Andrew Milner
  33. REM     1989-91) BBS program on com port 1 with a maximum baud rate of
  34. REM     2400bps, and an Exit Code Modifier of 0.  Please refer to the DVSwitch
  35. REM     v1.6 document file for more information.
  36.  
  37.